142a1058ba4ed0a309a952b1a0830eb18a179c96,spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardSession.java,StandardSession,notifyHandlerCompleted,#Handler#C#,843

Before Change


        try
        {
            if (handler != null)
                handler.completed(context);
        }
        catch (Exception x)
        {

After Change


    {
        try
        {
            handler.completed(context);
        }
        catch (Exception x)
        {